type net/http.http2FrameHeader

36 uses

	net/http (current package)
		h2_bundle.go#L1530: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
		h2_bundle.go#L1555: type http2FrameHeader struct {
		h2_bundle.go#L1579: func (h http2FrameHeader) Header() http2FrameHeader { return h }
		h2_bundle.go#L1581: func (h http2FrameHeader) String() string {
		h2_bundle.go#L1589: func (h http2FrameHeader) writeDebug(buf *bytes.Buffer) {
		h2_bundle.go#L1616: func (h *http2FrameHeader) checkValid() {
		h2_bundle.go#L1622: func (h *http2FrameHeader) invalidate() { h.valid = false }
		h2_bundle.go#L1635: func http2ReadFrameHeader(r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1641: func http2readFrameHeader(buf []byte, r io.Reader) (http2FrameHeader, error) {
		h2_bundle.go#L1644: 		return http2FrameHeader{}, err
		h2_bundle.go#L1646: 	return http2FrameHeader{
		h2_bundle.go#L1661: 	Header() http2FrameHeader
		h2_bundle.go#L1991: 	http2FrameHeader
		h2_bundle.go#L2008: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2123: 	http2FrameHeader
		h2_bundle.go#L2127: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2262: 	http2FrameHeader
		h2_bundle.go#L2268: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2295: 	http2FrameHeader
		h2_bundle.go#L2310: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2338: 	http2FrameHeader
		h2_bundle.go#L2352: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2359: 	http2FrameHeader
		h2_bundle.go#L2363: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2406: 	http2FrameHeader
		h2_bundle.go#L2431: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2548: 	http2FrameHeader
		h2_bundle.go#L2573: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
		h2_bundle.go#L2618: 	http2FrameHeader
		h2_bundle.go#L2622: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2650: 	http2FrameHeader
		h2_bundle.go#L2654: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
		h2_bundle.go#L2691: 	http2FrameHeader
		h2_bundle.go#L2705: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L4383: 			http2FrameHeader: http2FrameHeader{valid: true},